home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / DISK / MAG101.ARJ / MAG101.DOC next >
Text File  |  1991-11-24  |  7KB  |  168 lines

  1.  
  2.                ╔══════════════════════════════╗
  3.                ║                              ║
  4.                ║            Magnum            ║
  5.                ║                              ║
  6.                ║      LARGE hard drive        ║
  7.                ║    duplicate file finder     ║
  8.                ║                              ║
  9.                ║        Registered to:        ║
  10.                ║                              ║
  11.                ║    Your name could be here   ║
  12.                ║                              ║
  13.                ║         Version 1.01         ║
  14.                ║   Copyright (C) 1991-1991    ║
  15.                ║     by Theodore M. Rolle     ║
  16.                ║      All rights reserved.    ║
  17.                ║ BBS: 1-503-283-1358 (24 hrs) ║
  18.                ║       FidoNet 1:105/36       ║
  19.                ╚══════════════════════════════╝
  20.  
  21.  
  22. Included are two copies of Magnum, one (MAG88.EXE) is for an XT
  23. type machine and one (MAG286.EXE) is for an AT.
  24.  
  25. To run this little jewel, you need the following:
  26.  
  27.      A.   A hard disk drive (does NOT work on floppy drives).
  28.  
  29.      B.   A command line.  This is what you TYPE to get the
  30.           program going.  Here it is in it's simplest form:
  31.           (without the "C:>")
  32.  
  33.           C:>magnum
  34.  
  35.           When you use MAGNUM without anything else on the
  36.           command line it uses the .CFG file (IF it exists)
  37.           for the defaults.
  38.  
  39.           Several options may be specified on the command line
  40.           
  41.           Example:
  42.  
  43.                 C:>magnum -q >dupes.txt
  44.  
  45.                 This would tell the program to not show the
  46.                 drives as it checks them and to 'redirect'
  47.                 the information to a ASCII file called "DUPES.TXT"
  48.                 in the same directory as Magnum.
  49.  
  50.           Put an 'n' in front of the option to reverse its meaning:
  51.  
  52.           Example:
  53.  
  54.                 C:>magnum -nq >dupes.txt
  55.  
  56.           Command line options (if you use any of these that option
  57.           in the.CFG file is ignored):
  58.  
  59.           1.   -bfarkle  Specifies the "farkle" data base.  Note
  60.                          that there is NO space between the 'b'
  61.                          and the 'farkle'.  This option takes the
  62.                          place of the "db" keyword in the .CFG
  63.                          file.
  64.  
  65.           2.   -d        deletes the data base at the end of the
  66.                          run.  -nd leaves the data base on the drive.
  67.  
  68.           3.   -p        prints the information to a specified file.
  69.                          -np does NOT print the file.
  70.  
  71.           4.   -u        updates the existing data base.
  72.                          (not available yet)
  73.  
  74.      C.   The MAGNUM.CFG file.
  75.  
  76.           The defaults with no MAGNUM.CFG file and no command line are:
  77.  
  78.                 db foo
  79.                 create
  80.                 noquiet
  81.                 print
  82.                 delete
  83.  
  84.                 The printing is done to the screen.
  85.  
  86.           1.   Contents:
  87.  
  88.                a.        Comments are of two types:
  89.  
  90.                          (1)  Normal - these print on the console.
  91.                          Make the first character on the line a ';'.
  92.  
  93.                          (2)  Hidden - these don't print on the console.
  94.                          Make the first character on the line a '*'.
  95.  
  96.                b.        Keywords - these tell the program what
  97.                          to do.  Some of them can even be
  98.                          prefixed with "no" to reverse the
  99.                          meaning, but only where it makes sense.
  100.  
  101.                          (1)  db   database name is specified here.
  102.                          You gotta have this one.  Default is "FOO".
  103.  
  104.                          (2)  create    Creates, or overwrites a
  105.                          current, data base.
  106.  
  107.                          (3)  update    Updates an existing data base.
  108.                          (Not available yet.)
  109.  
  110.                          (4)  include   Include this disk, directory,
  111.                          file, and/or extension.  Wild cards are supported.
  112.                          Can't be used if you have an exclude.
  113.                          (Not available yet.)
  114.  
  115.                          (5)  exclude   Exclude this disk, directory,
  116.                          file, and/or extension.  Wild cards are supported.
  117.                          Can't be used if you have an include.
  118.                          (Only works with drive letters now, next step is
  119.                          to have it work with sub-directories.)
  120.  
  121.                c.        Examples:
  122.  
  123.                          (1)  Create a data base named "foo", search all
  124.                          drives, print a report, and delete the data base
  125.                          at the end of the run (using the .CFG file):
  126.  
  127.                          
  128.                                   db   foo
  129.  
  130.                          (2)  Create a data base named "bar", search all
  131.                          drives except J:, print a report, and delete the
  132.                          data base at the end of the run (make these changes
  133.                          in the .CFG file):
  134.  
  135.                          
  136.                                  db   bar
  137.                                  exclude j:
  138.  
  139.                          (3)   Create a data base named "tar", search all
  140.                          drives, print a report, and keep the data base at
  141.                          the end of the run (make these changes in the .CFG
  142.                          file):
  143.  
  144.                          
  145.                                  db   tar
  146.                                  nodelete
  147.  
  148. While MAGNUM is running in the lower left corner a flashing letter appears.
  149. The letter "B" means "build" (building the data base) and "P" means "print"
  150. (printing the data base).
  151.  
  152. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  153.  
  154. This program can only grow with your input.  If you have any suggestions,
  155. bug reports, or compliments, I'd welcome them.  Flames are referred
  156. to "KinetiCat" - our attact kitty.  From then on, beware!
  157.  
  158. If you would like to have your "own" copy compiled with YOUR name, mail a
  159. $10.00 check with the NAME you wish in the box, your name, address
  160. (both mail and FidoNet if you have one) and your voice phone number
  161. (in case of problems) to:
  162.  
  163. Ted Rolle
  164. 6346 N. Williams Ave.
  165. Portland, OR 97217-2178
  166.  
  167. Thanks, and take care ;->
  168.